"Are you going all by yourself?" he asked, and I couldn't tell if he was suspicious I had a secret boyfriend or just worried about car trouble.

“你是准备一个人去吗?”他问道,我不能确定他是怀疑我有一个秘密的男友还是只是担心车子的问题。

"Yes."

“是的”

"Seattle is a big city — you could get lost," he fretted.

“Seattle是一个大城市——你可能会迷路,”他担心道。

"Dad, Phoenix is five times the size of Seattle — and I can read a map, don't worry about it."

“爸,Phoenix是Seattle五倍那么大——并且我可以看地图,别担心”

"Do you want me to come with you?"

“你想让我陪你去吗?”

I tried to be crafty as I hid my horror.

我尝试狡猾的隐藏我的恐惧

"That's all right, Dad, I'll probably just be in dressing rooms all day — very boring."

“当然,爸,我可能只是在卖衣服的店里一整天——很无聊的。”

"Oh, okay." The thought of sitting in women's clothing stores for any period of time immediately put him off.

“哦,好吧。”坐在卖女装的商店里一段时间的想让让他立刻退缩了。

"Thanks." I smiled at him.

“谢谢”我笑着对他说。

"Will you be back in time for the dance?"

“你将会准时回来参加舞会吗?”

Grrr. Only in a town this small would a father know when the high school dances were.

emmm。只有在这样小的城镇里一个父亲才会知道高校什么时候会有舞会。

"No — I don't dance, Dad." He, of all people, should understand that — I didn't get my balance problems from my mother.

“不——我不会跳舞,爸。”他应该比其他所有人都明白一件事——我没有从我妈妈那里遗传平衡问题。

He did understand. "Oh, that's right," he realized.

他明白了。“哦,那好吧,”他也意识到了什么。

Chapter 4 Invitations——22的更多相关文章

  1. Chapter 4 Invitations——28

    "Oh, thanks, now that's all cleared up." Heavy sarcasm. “哦,真感谢,现在一切都清楚了.” 我很讽刺的说道 I realiz ...

  2. Chapter 4 Invitations——27

    "Myself, obviously." He enunciated every syllable, as if he were talking to someone mental ...

  3. Chapter 4 Invitations——26

    "I wanted to ask you something, but you sidetracked me," he chuckled. He seemed to have re ...

  4. Chapter 4 Invitations——25

    "So you are trying to irritate me to death? Since Tyler's van didn't do the job?" "所以 ...

  5. Chapter 4 Invitations——24

    "How do you do that?" I asked in amazed irritation. “你是怎么做到的?”我惊讶的问道. "Do what?" ...

  6. Chapter 4 Invitations——23

    The next morning, when I pulled into the parking lot, I deliberately parked as far as possible from ...

  7. Chapter 4 Invitations——21

    "Dad?" I asked when he was almost done. “爸?”我当他快吃完的时候问道. "Yeah, Bella?" “怎么了,Bel ...

  8. Chapter 4 Invitations——20

    Well, that was fine. I could leave him alone. 行吧,但愿一切都好.我能让他一个人. I would leave him alone. 我也会让他一个人的. ...

  9. Chapter 4 Invitations——19

    After I hung up, I tried to concentrate on dinner — dicing the chicken especially; I didn't want to ...

随机推荐

  1. 学习--->更新集合/内存/深浅拷贝

     一.计算机基础 1..软件(应用程序) 2.解释器/编译器 - 解释型语言:将代码每一行传递给计算机一行,常用编程语言python,PHP,Ruby. - 编译型语言:将代码完全执行完后会形成一个文 ...

  2. fiddler 应用

    一   pc 端抓取 例:本地调试代码,转换域名,请求网络数据 1:设置代理,以smart header 为例 ip为 127.0.0.1 端口与自己的fillder一致,注意将不代理的地址列表做修改 ...

  3. 微信JS SDK接入的几点注意事项

    微信JS SDK接入,主要可以先参考官网说明文档,总结起来有几个步骤: 1.绑定域名:先登录微信公众平台进入“公众号设置”的“功能设置”里填写“JS接口安全域名”.备注:登录后可在“开发者中心”查看对 ...

  4. Javascript Read Excel

    本文引用以下路径 https://www.cnblogs.com/liuxianan/p/js-excel.html

  5. java编程目录

    目录结构 java常用数据类型使用 https://www.cnblogs.com/cerofang/p/10250535.html java中的排序  https://www.cnblogs.com ...

  6. node简介

    1. Node.js是什么? 简单的说 Node.js 就是运行在服务端的 JavaScript. Node.js 是一个基于Chrome JavaScript 运行时建立的一个平台. Node.js ...

  7. 2018年10月OKR初步规划

    OKR(Objectives and Key Results)即目标+关键结果,是一套明确和跟踪目标及其完成情况的管理工具和方法 今天是十月的第一个工作日,也是我归零的第一天,受到一位前辈的启发,我决 ...

  8. 11、js 数组详细操作方法及解析合集

    js 数组详细操作方法及解析合集 前言 在开发中,数组的使用场景非常多,平日中也涉及到很多数组的api/相关操作,一直也没有对这块内容进行一块整理总结,很多时候就算用过几次这个api,在开发中也很容易 ...

  9. selenium webdriver定位不到元素的五种原因及解决办法

    1.动态id定位不到元素 for example:        //WebElement xiexin_element = driver.findElement(By.id("_mail_ ...

  10. mysql数据库表的修改及删除

    一.对数据表的修改 1.重命名一张表: RENAME TABLE 原名 TO 新名字; ALTER TABLE 原名 RENAME 新名; ALTER TABLE 原名 RENAME TO 新名; 2 ...