While I was sitting there, looking everywhere but at the car in front of me, I heard a knock on my passenger side window.
当我一直坐在那里的时候,到处向我前方张望着,除了眼前的车子,我听到了有人敲打我副驾驶的车窗。

I looked over; it was Tyler.
我看过去,原来是Tyler

I glanced back in my rearview mirror, confused. His car was still running, the door left open.
我撇了一眼我的反光镜,疑惑着。他的车任然启动着,左边的门还开着。

I leaned across the cab to crank the window down.
我倾斜过去摇下车窗。

It was stiff. I got it halfway down, then gave up.
手柄很僵硬。我摇下了一半然后就放弃了。

  "I'm sorry, Tyler, I'm stuck behind Cullen."
  “抱起Tyler,我跟Cullen太近了”
  
  I was annoyed — obviously the holdup wasn't my fault.
  我有点生气——显而易见交通堵塞不是我的问题。

  "Oh, I know — I just wanted to ask you something while we're trapped here." He grinned.
  “哦,我知道——我也被卡主了我就只是想来问你一些事情”他边笑边说道。

  This could not be happening.
  这一切不应该发生的。

  "Will you ask me to the spring dance?" he continued.
  “你会邀请我去春天舞会吗?”他继续说道。

  "I'm not going to be in town, Tyler."
  “我不会去的Tyler”
  
  My voice sounded a little sharp.
  我的生气听上去有点尖锐。
  
  I had to remember it wasn't his fault that Mike and Eric had already used up my quota of patience for the day.
  我不得不说这不是他的错,因为Mike和Eric今天已经耗完了我全部的耐心。

  "Yeah, Mike said that," he admitted.
  “是的,Mike也是这么说的,”他承认道。

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

  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——22

    "Are you going all by yourself?" he asked, and I couldn't tell if he was suspicious I had ...

  8. Chapter 4 Invitations——21

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

  9. Chapter 4 Invitations——20

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

随机推荐

  1. 2016-3-1 安装Hexo过程中遇到的问题

      查找问题地址: http://hexo.io/docs/troubleshooting.html   1.通过npm安装hexo运行命令:sudo npm install -g hexo 出现这个 ...

  2. springboot添加邮件发送及压缩功能

    springboot添加邮件发送及文件压缩功能 转载请注明出处:https://www.cnblogs.com/funnyzpc/p/9190233.html 先来一段诗 ``` 就这样吧 忍受折磨 ...

  3. JQuery实现旋转轮播图

    css部分 <style> *{ margin:; padding:; } .container{ width:100%; height:353px; margin-top: 20px; ...

  4. python学习:元组和嵌套

    tuple(元组):只是可读,不可以修改# tup1 = () #空元组# tup2 = (20,) #元组内有一个元素,需要在元素后添加逗号 a = (1,2,3,4)print(a[1])a[1] ...

  5. position属性sticky和fixed的区别比较

    position属性之fixed fixed总是以body为定位时的对象,总是根据浏览器窗口来进行元素的定位,通过left,right,top,bottom属性进行定位. <!DOCTYPE h ...

  6. Conda命令指标

    一.Conda相关指令 # 查看当前环境下已安装的包 conda list # 查看某个指定环境的已安装包 conda list -n tensorflow # 查找package信息 conda s ...

  7. CoreProfiler升级到.NetStandard 2.0

    致所有感兴趣的朋友: CoreProfiler和相应的Sample项目cross-app-profiling-demo都已经升级到.NetStandrard 2.0和.NetCore 2.0. 有任何 ...

  8. Spring相关问题

    1.什么是 Spring 框架?Spring 框架有哪些主要模块?Spring 框架是一个为 Java 应用程序的开发提供了综合.广泛的基础性支持的 Java 平台.Spring帮助开发者解决了开发中 ...

  9. ArrayList源码理解

    ArrayList是基于数组实现的,是一个动态数组,其容量能自动增长,类似于C语言中的动态申请内存,动态增长内存. ArrayList不是线程安全的,只能用在单线程环境下,多线程环境下可以考虑用Col ...

  10. HashMap和HashTable简介和区别

    一.HashMap简介 HashMap是基于哈希表实现的,每一个元素是一个key-value对,其内部通过单链表解决冲突问题,容量不足(超过了阀值)时,同样会自动增长. HashMap是非线程安全的, ...